home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Hacking & Misc / oB's MacSpoofing.sit / oB's MacSpoofing / MacSpoofing.rsrc / TEXT_129.txt < prev    next >
Text File  |  1998-04-04  |  3KB  |  61 lines

  1. THE SCRIPT
  2.  
  3. Ok, I decided to include this section just in case someone gets this phile and the script itself is not included with it.
  4.  
  5. There ae actually two versions of the script. What happened was, when I first heard about this script and checked it out, and decided to write about it, it turned out that WeeDo (that author of the script) wasn't quite done with it. It worked fine, only thing is, the IDENT and TAGLINES were hardcode in to to someone named Ravemsloft, and there were no terms to configure them. I can only assume that WeeDo was going to get around to fixing that sooner or later, but I got impatient and just fized it myself... Anyway, so thats why there are two versions. So, listed here you will see both versions of the script, the original Spoofer 1.1, and my mod Spoofer 1.2. 
  6.  
  7. If you have the AppleScript Script Editor, then you should be bale to just copy either of these scripts out of this DocMaker file and paste them into a new Script maker file via the Script Editor.
  8.  
  9. By the way, the version talked about in this file is my modded version.
  10.  
  11. Spoofer v1.1 by WeeDo
  12.  
  13. on load()
  14.     tell application "ircle3.0b"
  15.         display "Spoofer 1.1 loaded.." with color 2
  16.         display "To spoof:" with color 2
  17.         display "Type: '/server spoofedserverip port'" with color 2
  18.         display "Wait until connection" with color 2
  19.         display "Type: '/spoof yournickname theIRCserver theport'" with color 2
  20.         display "A wonderful spoof from WeeDo, original code by Photoman" with color 2
  21.     end tell
  22. end load
  23.  
  24. on spoof(source, ircserver, port)
  25.     tell application "ircle3.0b"
  26.         do "/quote " & ircserver & " " & port
  27.         do "/quote NICK " & source & ""
  28.         do "/quote USER Ravensloftishere 26 . :BePrepared"
  29.     end tell
  30. end spoof
  31.  
  32.  
  33.  
  34. Spoofer v1.2 by WeeDo with mod by oB
  35.  
  36. on load()
  37.     tell application "ircle3.0b"
  38.         display "Spoofer 1.2 loaded..." with color 2
  39.         display " "
  40.         display "Usage:" with color 2
  41.         display " "
  42.         display "1. '/server [wingate ip] [telnetport]'" with color 2
  43.         display "2. Wait until connection..." with color 2
  44.         display "3. '/spoof [nick] [ircserver] [ircserverport] [ident] [tagline]'" with color 2
  45.         display " "
  46.         display "A wonderful spoof from WeeDo, original code by Photoman" with color 2
  47.     end tell
  48. end load
  49.  
  50. on spoof(source, ircserver, port, ident, tagline)
  51.     tell application "ircle3.0b"
  52.         do "/quote " & ircserver & " " & port
  53.         do "/quote NICK " & source & ""
  54.         do "/quote USER " & ident & " 26 . :" & tagline & ""
  55.     end tell
  56. end spoof
  57.  
  58.  
  59. Future versions of this script can be found at the WSpoof home page:
  60.  
  61.                          http://www.purelinux.ml.org/~nick/wspoof/